﻿
.notification-root {
    z-index: 5000;
    display: flex;
    position: fixed;
    top: 0;
    padding: 20px;
    width: 100%;
    height: 100%;
    margin-left: -20px;
    /*border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.17);
    color: #224271;
    font-size: 12px;
    box-sizing: border-box;
    align-content: flex-start;*/
}

.item.notification-root {
    margin-left: -159px;
}

.notification-root.hidden {
    display: none;
}

.notification-root .notification-mask {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6)
}

.notification-root .notification-content {
    position: relative;
    z-index: 6000;
    width: 868px;
    height: 612px;
    display: flex;
    flex-direction: column;
    margin: 160px auto 0px;
    background-color: #fff;
    border-radius: 10px;
    padding: 5px 10px;
    box-sizing: border-box;
    max-height: 100vh;
}


    .notification-root .notification-content .notification-wrapper .close {
        font-size: 36px;
        color: #357c8e;
        cursor: pointer;
        display: flex;
        justify-content: right;
    }

    .notification-root .notification-content .notification-wrapper .full-width.content {
        width: 765px;
        height: 75%;
        margin-left: auto;
        margin-right: auto;
        overflow:auto;
    }

@media (max-width: 550px) {
    .notification-root .notification-content {
        max-width: 93%;
        height: auto;
        margin: 50px auto auto;
        border-radius: 10px 10px 0 0;
    }

        .notification-root .notification-content .notification-wrapper .full-width.content {
            max-width: 100%;
            max-height: 100%;
        }
}

.notification-root .notification-content .notification-wrapper .title {
    display: flex;
    justify-content: center;
    font-size: 28px;
    font-weight: bolder
}

.notification-root .notification-content .wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.notification-root .notification-content .btn-wrapper {
    height: 50px;
}

    .notification-root .notification-content .btn-wrapper .btn {
        width: calc((100% - 25px) / 2);
        height: 50px;
        border-radius: 5px;
        background-color: #ea515d;
        outline: none;
        color: #fff;
        cursor: pointer;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.26);
    }
